home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gxfmap.h < prev    next >
C/C++ Source or Header  |  1996-09-21  |  3KB  |  93 lines

  1. /* Copyright (C) 1992, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxfmap.h */
  20. /* Fraction map representation for Ghostscript */
  21.  
  22. #ifndef gxfmap_INCLUDED
  23. #  define gxfmap_INCLUDED
  24.  
  25. #include "gsrefct.h"
  26. #include "gxfrac.h"
  27. #include "gxtmap.h"
  28.  
  29. /*
  30.  * Define a cached map from fracs to fracs.  Level 1 uses this only
  31.  * for the transfer function; level 2 also uses it for black generation
  32.  * and undercolor removal.  Note that reference counting macros must
  33.  * be used to allocate, free, and assign references to gx_transfer_maps.
  34.  */
  35. /* log2... must not be greater than frac_bits, and must be least 8. */
  36. #define log2_transfer_map_size 8
  37. #define transfer_map_size (1 << log2_transfer_map_size)
  38. /*typedef struct gx_transfer_map_s gx_transfer_map;*/    /* in gxtmap.h */
  39. struct gx_transfer_map_s {
  40.     rc_header rc;
  41.     gs_mapping_proc proc;        /* typedef is in gxtmap.h */
  42.         /* The id changes whenever the map or function changes. */
  43.     gs_id id;
  44.     frac values[transfer_map_size];
  45. };
  46. /* We export st_transfer_map for gscolor.c. */
  47. extern_st(st_transfer_map);
  48. #define public_st_transfer_map() /* in gsstate.c */\
  49.   gs_public_st_simple(st_transfer_map, gx_transfer_map, "gx_transfer_map")
  50.  
  51. /*
  52.  * Map a color fraction through a transfer map.  If the map is small,
  53.  * we interpolate; if it is large, we don't, and save a lot of time.
  54.  */
  55. #define FRAC_MAP_INTERPOLATE (log2_transfer_map_size <= 8)
  56. #if FRAC_MAP_INTERPOLATE
  57.  
  58. frac gx_color_frac_map(P2(frac, const frac *));    /* in gxcmap.c */
  59. #  define gx_map_color_frac(pgs,cf,m)\
  60.      gx_color_frac_map(cf, &pgs->m->values[0])
  61.  
  62. #else    /* !FRAC_MAP_INTERPOLATE */
  63.  
  64. /* Do the lookup in-line. */
  65. #  define gx_map_color_frac(pgs,cf,m)\
  66.      (pgs->m->values[frac2bits(cf, log2_transfer_map_size)])
  67.  
  68. #endif    /* (!)FRAC_MAP_INTERPOLATE */
  69.  
  70. /* Map a color fraction expressed as a byte through a transfer map. */
  71. /* (We don't use this anywhere right now.) */
  72. /****************
  73. #if log2_transfer_map_size <= 8
  74. #  define byte_to_tmx(b) ((b) >> (8 - log2_transfer_map_size))
  75. #else
  76. #  define byte_to_tmx(b)\
  77.     (((b) << (log2_transfer_map_size - 8)) +\
  78.      ((b) >> (16 - log2_transfer_map_size)))
  79. #endif
  80. #define gx_map_color_frac_byte(pgs,b,m)\
  81.  (pgs->m->values[byte_to_tmx(b)])
  82.  ****************/
  83.  
  84. /* Map a floating point value through a transfer map. */
  85. #define gx_map_color_float(pmap,v)\
  86.   ((pmap)->values[(int)((v) * transfer_map_size + 0.5)] / frac_1_float)
  87.  
  88. /* Define a mapping procedure that just looks up the value in the cache. */
  89. /* (It is equivalent to gx_map_color_float with the arguments swapped.) */
  90. float gs_mapped_transfer(P2(floatp, const gx_transfer_map *));
  91.  
  92. #endif                    /* gxfmap_INCLUDED */
  93.